home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / GIMP 2.6.8 / gimp-2.6.8-i686-setup.exe / {app} / share / gimp / 2.0 / scripts / chalk.scm < prev    next >
Text File  |  2009-12-15  |  4KB  |  131 lines

  1. ; GIMP - The GNU Image Manipulation Program
  2. ; Copyright (C) 1995 Spencer Kimball and Peter Mattis
  3. ;
  4. ; This program is free software; you can redistribute it and/or modify
  5. ; it under the terms of the GNU General Public License as published by
  6. ; the Free Software Foundation; either version 2 of the License, or
  7. ; (at your option) any later version.
  8. ;
  9. ; This program is distributed in the hope that it will be useful,
  10. ; but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. ; GNU General Public License for more details.
  13. ;
  14. ; You should have received a copy of the GNU General Public License
  15. ; along with this program; if not, write to the Free Software
  16. ; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17. ;
  18. ; chalk.scm  version 0.11  10/10/97
  19. ;
  20. ; Copyright (C) 1997 Manish Singh <msingh@uclink4.berkeley.edu>
  21. ;
  22. ; Makes a logo with a chalk-like text effect.
  23.  
  24. (define (apply-chalk-logo-effect img
  25.                                  logo-layer
  26.                                  bg-color)
  27.   (let* (
  28.         (width (car (gimp-drawable-width logo-layer)))
  29.         (height (car (gimp-drawable-height logo-layer)))
  30.         (bg-layer (car (gimp-layer-new img
  31.                                        width height RGB-IMAGE
  32.                                        "Background" 100 NORMAL-MODE)))
  33.         )
  34.  
  35.     (gimp-context-push)
  36.  
  37.     (gimp-selection-none img)
  38.     (script-fu-util-image-resize-from-layer img logo-layer)
  39.     (script-fu-util-image-add-layers img bg-layer)
  40.     (gimp-context-set-background bg-color)
  41.     (gimp-edit-fill bg-layer BACKGROUND-FILL)
  42.  
  43.     ; the actual effect
  44.     (gimp-layer-set-lock-alpha logo-layer FALSE)
  45.     (plug-in-gauss-rle RUN-NONINTERACTIVE img logo-layer 2.0 1 1)
  46.     (plug-in-spread RUN-NONINTERACTIVE img logo-layer 5.0 5.0)
  47.     (plug-in-ripple RUN-NONINTERACTIVE img logo-layer 27 2 0 0 0 TRUE TRUE)
  48.     (plug-in-ripple RUN-NONINTERACTIVE img logo-layer 27 2 1 0 0 TRUE TRUE)
  49.     (plug-in-sobel RUN-NONINTERACTIVE img logo-layer TRUE TRUE TRUE)
  50.     (gimp-levels logo-layer 0 0 120 3.5 0 255)
  51.  
  52.     ; work-around for sobel edge detect screw-up (why does this happen?)
  53.     ; the top line of the image has some garbage instead of the bgcolor
  54.     (gimp-rect-select img 0 0 width 1 CHANNEL-OP-ADD FALSE 0)
  55.     (gimp-edit-clear logo-layer)
  56.     (gimp-selection-none img)
  57.  
  58.     (gimp-context-pop)
  59.   )
  60. )
  61.  
  62.  
  63. (define (script-fu-chalk-logo-alpha img
  64.                                     logo-layer
  65.                                     bg-color)
  66.   (begin
  67.     (gimp-image-undo-group-start img)
  68.     (apply-chalk-logo-effect img logo-layer bg-color)
  69.     (gimp-image-undo-group-end img)
  70.     (gimp-displays-flush)
  71.   )
  72. )
  73.  
  74. (script-fu-register "script-fu-chalk-logo-alpha"
  75.   _"_Chalk..."
  76.   _"Create a chalk drawing effect for the selected region (or alpha)"
  77.   "Manish Singh <msingh@uclink4.berkeley.edu>"
  78.   "Manish Singh"
  79.   "October 1997"
  80.   "RGBA"
  81.   SF-IMAGE     "Image"            0
  82.   SF-DRAWABLE  "Drawable"         0
  83.   SF-COLOR    _"Background color" "black"
  84. )
  85.  
  86. (script-fu-menu-register "script-fu-chalk-logo-alpha"
  87.                          "<Image>/Filters/Alpha to Logo")
  88.  
  89.  
  90. (define (script-fu-chalk-logo text
  91.                               size
  92.                               font
  93.                               bg-color
  94.                               chalk-color)
  95.   (let* (
  96.         (img (car (gimp-image-new 256 256 RGB)))
  97.         (border (/ size 4))
  98.         (text-layer (car (gimp-text-fontname img -1 0 0 text border TRUE size PIXELS font)))
  99.         )
  100.  
  101.     (gimp-context-push)
  102.  
  103.     (gimp-image-undo-disable img)
  104.     (gimp-context-set-foreground chalk-color)
  105.     (gimp-layer-set-lock-alpha text-layer TRUE)
  106.     (gimp-edit-fill text-layer FOREGROUND-FILL)
  107.     (apply-chalk-logo-effect img text-layer bg-color)
  108.     (gimp-image-undo-enable img)
  109.     (gimp-display-new img)
  110.  
  111.     (gimp-context-pop)
  112.   )
  113. )
  114.  
  115. (script-fu-register "script-fu-chalk-logo"
  116.   _"_Chalk..."
  117.   _"Create a logo resembling chalk scribbled on a blackboard"
  118.   "Manish Singh <msingh@uclink4.berkeley.edu>"
  119.   "Manish Singh"
  120.   "October 1997"
  121.   ""
  122.   SF-STRING     _"Text"               "CHALK"
  123.   SF-ADJUSTMENT _"Font size (pixels)" '(150 2 1000 1 10 0 1)
  124.   SF-FONT       _"Font"               "Cooper"
  125.   SF-COLOR      _"Background color"   "black"
  126.   SF-COLOR      _"Chalk color"        "white"
  127. )
  128.  
  129. (script-fu-menu-register "script-fu-chalk-logo"
  130.                          "<Image>/File/Create/Logos")
  131.